home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.lang.c++
- Path: netcom.com!marnold
- From: marnold@netcom.com (Matt Arnold)
- Subject: Re: DLLs in Borland C++ 4.0 nees bc40rtl.dll????
- Message-ID: <marnoldDMwx5H.D5H@netcom.com>
- Organization: NETCOM On-line Communication Services (408 261-4700 guest)
- References: <4g3f6u$20i@ixnews7.ix.netcom.com>
- Date: Sat, 17 Feb 1996 09:03:17 GMT
- Sender: marnold@netcom.netcom.com
-
- ticker@ix.netcom.com(Pavel Popov ) writes:
-
- >I just realised that the DLL I wrote a long time ago needs another DLL
- >which comes with Borland C++ - bc40rtl.dll.
- >Is there any way do not include the bc40rtl.dll or it is always a part
- >or the application by design????
-
- >Please help!
-
- >Respond on my e-mail address ticker@ix.netcom.com
- >Thank you
-
- If you build your DLL with "dynamic run-time libraries" turned on, your
- DLL will rely on the dynamic version (ie, the "DLL version) of Borland's
- runt-time library. Borland's dynamic run-time library is contained in
- BC40RTL.DLL (thus the "RTL" as part of it's name).
-
- If you build your DLL with "static run-time libraries" turned on, the
- run-time library code will be directly linked into your DLL (or EXE) and
- it will not need BC40RTL.DLL.
-
- Regards,
- -------------------------------------------------------------------------
- Matt Arnold | | ||| | |||| | | | || ||
- marnold@netcom.com | | ||| | |||| | | | || ||
- Boston, MA | 0 | ||| | |||| | | | || ||
- 617.389.7384 (h) 617.576.2760 (w) | | ||| | |||| | | | || ||
- C++, MIDI, Win32/95 developer | | ||| 4 3 1 0 8 3 || ||
- -------------------------------------------------------------------------
-
-